This is a brief derivation for the closed form solutions for smoothing Thin Plate Spline. Details about these splines can be found in (Wahba, 1990).
Thin plate splines (TPS) were introduced to geometric design by Duchon (Duchon, 1976). The name thin plate spline refers to a physical analogy involving the bending of a thin sheet of metal. In the physical setting, the deflection is in the direction, orthogonal to the plane. In order to apply this idea to the problem of coordinate transformation, one interprets the lifting of the plate as a displacement of the or coordinates within the plane. In 2D cases, given a set of corresponding points, the TPS warp is described by parameters which include 6 global affine motion parameters and coefficients for correspondences of the control points. These parameters are computed by solving a linear system, in other words, TPS has closed-form solution.
Smoothing TPS is a regularized TPS. The model has a parameter to control how non-rigid is allowed for the deformation.
Contents |
Given a set of control points , a radial basis function basically defines a spatial mapping which maps any location in space to a new location , represented by,
where denotes the usual Euclidean norm and is a set of mapping coefficients. One possible choice for the kernel function is the thin plate spline . It has a more global nature than the Gaussian kernel , which is another common function -- a small perturbation of one of the control points always affects the coefficients corresponding to all the other points as well. Note that a thin plate spline is generally understood as a function minimizing the integral of the squared second derivative, typically in two dimensions. This corresponds to the radial basis kernel . Other choices of radial basis kernel produce interpolation that would not normally be described as a thin plate spline. For example the Gaussian kernel corresponds to minimization of an infinite sum of derivative terms.
One of the simplest smoothness measures is the space integral of the square of the second order derivatives of the mapping function. This leads us to the thin plate spline (TPS). The TPS fits a mapping function between corresponding point-sets and by minimizing the following energy function:
And for a smoothing TPS, it is
Then smoothing TPS is defined as
For this variational problem, it can be shown that there exists a unique minimizer (Wahba,1990) with a fixed weight parameter which is presented in the next section. The finite element discretization of this variational problem, the method of elastic maps, is used for data mining and nonlinear dimensionality reduction.
Suppose the points are in 2D (D = 2). One can use homogeneous coordinates for the point-set where a point is represented as a vector . The unique minimizer is parameterized by which comprises two matrices and ().
where d is a matrix representing the affine transformation and c is a warping coefficient matrix representing the non-affine deformation. The kernel function is a vector for each point , where each entry for 2 dimensions. Note that for TPS, the control points are chosen to be the same as the set of points to be warped , so we already use in the place of the control points.
If one substitutes the solution for , becomes:
where and are just concatenated versions of the point coordinates and , and is a matrix formed from the . Each row of each newly formed matrix comes from one of the original vectors. The matrix represents the TPS kernel. Loosely speaking, the TPS kernel contains the information about the point-set's internal structural relationships. When it is combined with the warping coefficients , a non-rigid warping is generated.
A nice property of the TPS is that it can always be decomposed into a global affine and a local non-affine component. Consequently, the TPS smoothness term is solely dependent on the non-affine components. This is a desirable property, especially when compared to other splines, since the global pose parameters included in the affine transformation are not penalized.
The separation of the affine and non-affine warping space is done through a QR decomposition (Wahba,1990).
where Q1 and Q2 are and orthonormal matrices, respectively. The matrix is upper triangular. With the QR decomposition in place, we have
where is a matrix. Setting (which in turn implies that ) enables us to cleanly separate the first term in last third equation into a non-affine term and an affine term (first and second terms last equation respectively).
The least-squares energy function in the last equation can be first minimized w.r.t and then w.r.t. . By applying Tikhonov regularization we have
The minimum value of the TPS energy function obtained at the optimum is
TPS has been widely used as the non-rigid transformation model in image alignment and shape matching.
The popularity of TPS comes from a number of advantages: (1) the interpolation is smooth with derivatives of any order; (2) the model has no free parameters that need manual tuning; (3) it has closed-form solutions for both warping and parameter estimation; and (4) there is a physical explanation for its energy function.